home *** CD-ROM | disk | FTP | other *** search
/ The Guided Tour of Multimedia (Second Edition) / The Guided Tour of Multimedia (Second Edition).iso / trials / director / evalcopy / director.z / NOH_TALE.DIR / 00166_Script_166 < prev    next >
Text File  |  1994-06-29  |  631b  |  17 lines

  1. --Choosing "Mute" from the custom Volume menu has the playback
  2. --head go to the frame marked "Mute." This handler sets 
  3. --the computer's sound level to 0, puts a checkmark
  4. --next to the "Mute" command in the Volume menu, and removes 
  5. --checkmarks from the other Volume menu items.
  6.  
  7.  
  8. on exitFrame
  9.   set the soundLevel to 0
  10.   beep
  11.   Set the checkMark of menuItem "LOUD" of menu "VOLUME" to FALSE
  12.   Set the checkMark of menuItem "MEDIUM" of menu "VOLUME" to FALSE
  13.   Set the checkMark of menuItem "SOFT" of menu "VOLUME" to FALSE
  14.   Set the checkMark of menuItem "MUTE" of menu "VOLUME" to TRUE
  15.   go to frame "Stay"
  16. end
  17.